From 3a55ba03107d296269bc0bd63b1c93ea3a62f41f Mon Sep 17 00:00:00 2001 From: Alex Williamson Date: Mon, 7 May 2007 13:12:44 -0600 Subject: [PATCH] [IA64] Prevent softlock up message when domain is restored. Signed-off-by: Isaku Yamahata --- linux-2.6-xen-sparse/arch/ia64/kernel/time.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/linux-2.6-xen-sparse/arch/ia64/kernel/time.c b/linux-2.6-xen-sparse/arch/ia64/kernel/time.c index a151b72a21..cec97e3069 100644 --- a/linux-2.6-xen-sparse/arch/ia64/kernel/time.c +++ b/linux-2.6-xen-sparse/arch/ia64/kernel/time.c @@ -322,6 +322,8 @@ time_resume(void) for_each_online_cpu(cpu) init_missing_ticks_accounting(cpu); + + touch_softlockup_watchdog(); } #else #define init_missing_ticks_accounting(cpu) do {} while (0) @@ -412,6 +414,9 @@ ia64_init_itm (void) if (is_running_on_xen()) init_missing_ticks_accounting(smp_processor_id()); + /* avoid softlock up message when cpu is unplug and plugged again. */ + touch_softlockup_watchdog(); + /* Setup the CPU local timer tick */ ia64_cpu_local_tick(); } -- 2.30.2